net/http.http2clientStream.ID (field)

17 uses

	net/http (current package)
		h2_bundle.go#L7726: 	ID            uint32
		h2_bundle.go#L8903: 	err = cc.writeHeaders(cs.ID, endStream, int(cc.maxFrameSize), hdrs)
		h2_bundle.go#L8931: 	if cs.ID == 0 {
		h2_bundle.go#L8972: 					cc.writeStreamReset(cs.ID, se.Code, false, err)
		h2_bundle.go#L9003: 				cc.writeStreamReset(cs.ID, http2ErrCodeCancel, ping, err)
		h2_bundle.go#L9009: 			cc.writeStreamReset(cs.ID, http2ErrCodeNo, false, nil)
		h2_bundle.go#L9013: 	if cs.ID != 0 {
		h2_bundle.go#L9014: 		cc.forgetStreamID(cs.ID)
		h2_bundle.go#L9213: 			err = cc.fr.WriteData(cs.ID, sentEnd, data)
		h2_bundle.go#L9261: 		err = cc.writeHeaders(cs.ID, true, maxFrameSize, trls)
		h2_bundle.go#L9263: 		err = cc.fr.WriteData(cs.ID, true, nil)
		h2_bundle.go#L9361: 	cs.ID = cc.nextStreamID
		h2_bundle.go#L9363: 	cc.streams[cs.ID] = cs
		h2_bundle.go#L9364: 	if cs.ID == 0 {
		h2_bundle.go#L9879: 			cc.fr.WriteWindowUpdate(cs.ID, http2mustUint31(streamAdd))
		h2_bundle.go#L10024: 				cc.fr.WriteWindowUpdate(cs.ID, uint32(sendStream))
		h2_bundle.go#L10247: 	serr := http2streamError(cs.ID, f.ErrCode)